Skip to main content
Version: 5.x.x

NullableKeys


import { NullableKeys } from "@hyper-fetch/core"

Description

Defined in types/helpers.types.ts:5

Preview

type NullableKeys<T> = { [ P in keyof T ]-?: NullableType<T[P]> };

Structure

[P in keyof T]-?: NullableType<T[P]>